home *** CD-ROM | disk | FTP | other *** search
/ TeX 1995 July / TeX CD-ROM July 1995 (Disc 1)(Walnut Creek)(1995).ISO / tex-k / charter-1.0.tar.gz / charter-1.0.tar / charter-1.0 / Makefile < prev    next >
Makefile  |  1993-05-15  |  729b  |  38 lines

  1. # Makefile for the Charter fonts.
  2.  
  3. version = 1.0
  4.  
  5. AFM2TFM = afm2tfm
  6. VPTOVF = vptovf
  7.  
  8. .PRECIOUS: %.vpl
  9.  
  10. tfm_files = bchr.tfm bchri.tfm bchb.tfm bchbi.tfm bchrc.tfm
  11.  
  12. all: $(tfm_files)
  13. # Make the raw TFM file as well as the VPL file.
  14. %.vpl: %.afm
  15.     $(AFM2TFM) $< -v $@ r$*
  16.  
  17. bchrc.vpl:
  18.     $(AFM2TFM) bchr -V bchrc.vpl rbchr
  19.  
  20. # Make the VF file as well as the TFM file.
  21. %.tfm: %.vpl
  22.     $(VPTOVF) $< $*.vf $@
  23.  
  24. distclean clean mostlyclean:
  25.     rm -f *.dvi *.log *.vpl *.ps
  26.  
  27. realclean: distclean
  28.     rm -f *.vf *.tfm
  29.  
  30. dist_files = ChangeLog Makefile README psfonts.add *.tfm *.vf *.afm *.pfb
  31. distdir = charter-$(version)
  32. dist: all
  33.     rm -rf $(distdir)
  34.     mkdir $(distdir)
  35.     ln $(dist_files) $(distdir)
  36.     tar czf $(distdir). $(distdir)
  37.     rm -rf $(distdir)
  38.